From: Jan Beulich Date: Thu, 3 Jul 2014 14:37:22 +0000 (+0200) Subject: mini-os: add BUILD_BUG_ON() X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~4708 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22man:///%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22man:/?a=commitdiff_plain;h=4f1f414ab5e93e73bc42435ae10e2ecae6cc5e5a;p=xen.git mini-os: add BUILD_BUG_ON() Just copy over what the hypervisor currently uses (comments dropped due to being of unknown origin; the implementation was done by me anyway). Signed-off-by: Jan Beulich Acked-by: Samuel Thibault Acked-by: Tim Deegan --- diff --git a/extras/mini-os/include/lib.h b/extras/mini-os/include/lib.h index 670c14fb24..62836c7fed 100644 --- a/extras/mini-os/include/lib.h +++ b/extras/mini-os/include/lib.h @@ -54,6 +54,15 @@ #include #include "gntmap.h" +#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6) +#define BUILD_BUG_ON(cond) ({ _Static_assert(!(cond), "!(" #cond ")"); }) +#define BUILD_BUG_ON_ZERO(cond) \ + sizeof(struct { _Static_assert(!(cond), "!(" #cond ")"); }) +#else +#define BUILD_BUG_ON_ZERO(cond) sizeof(struct { int:-!!(cond); }) +#define BUILD_BUG_ON(cond) ((void)BUILD_BUG_ON_ZERO(cond)) +#endif + #ifdef HAVE_LIBC #include #include